home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / Development / PowerD / powerd / source / lib / powerd_lib.lha / PowerD / Out.ass < prev    next >
Text File  |  2000-04-16  |  231b  |  19 lines

  1. ; d1 - fh
  2. ; d2 - char
  3.  
  4.     xdef    _Out
  5.  
  6. _Out    movem.l    d2-d3/a6,-(a7)
  7.     lea    (.buff,pc),a0
  8.     move.b    d2,(a0)
  9.     move.l    a0,d2
  10.     moveq    #1,d3
  11.     move.l    _DOSBase,a6
  12.     jsr    (-48,a6)        ; Write()
  13.     movem.l    (a7)+,d2-d3/a6
  14.     rts
  15.  
  16. .buff    dc.b    0,0
  17.  
  18.     xref    _DOSBase
  19.